home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Files / Errors / NoSuchVolume.h < prev    next >
Text File  |  2000-06-23  |  250b  |  19 lines

  1. // NoSuchVolume.h
  2.  
  3. #ifndef NoSuchVolume_h
  4. #define NoSuchVolume_h
  5.  
  6. #ifndef VolumeError_h
  7. #include "VolumeError.h"
  8. #endif
  9.  
  10. class NoSuchVolume: public VolumeError
  11.   {
  12.     public:
  13.         NoSuchVolume( OSErr error )
  14.           : VolumeError( error )
  15.           {}
  16.   };
  17.  
  18. #endif
  19.